#discord-widget-container {
  position: relative;
  z-index: 9999; /* Ensures it's on top of other elements */
  width: 300px; /* Set the desired width */
  height: 75px; /* Set the desired height */
}

#discord-bluebox-container {
  position: relative;
  z-index: 9999; /* Ensures it's on top of other elements */
  width: 300px; /* Set the desired width */
  height: 75px; /* Set the desired height */
}

#discordstatus-overlay {
  position: absolute;
  width: 97%;
  height: 85%;
  background-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgb(8, 8, 8);
  border-radius: 15px;
  z-index: 1; /* Place the overlay on top of the iframe */
  margin-top: 10px;
}

#custom-text {
  width: 98%;
  height: 85%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 14px; /* Adjust the font size as needed */
  color: #ffffff; /* Text color */
  background-color: #5063cf; /* Background color for the text */
  border-radius: 15px;
  margin-top: 10px;
}